Labs 7-8 Submit (managed by git) 
=============================

Assume that your username is jdoe. The following commands
can be used to acquire, develop and submit your work.

To initially acquire a clone of the 355LabsPart2 project:
--------------------------------------------------------
ssh csci fork csci355/355LabsPart2 csci355/jdoe/355LabsPart2
git clone csci:csci355/jdoe/355LabsPart2


To submit your 355LabsPart2  work (must be located in 355LabsPart2 directory with README):
-----------------------------------------------------------------------------------------
git add --all .
git commit
git push

To acquire instructor updates to 355LabsPart2:
--------------------------------------
git remote add instructor csci:csci355/355LabsPart2
git fetch instructor
git diff instructor/master master
git merge instructor/master master

